home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
PC World 2005 January
/
PCWorld_2005-01_cd.bin
/
software
/
vyzkuste
/
mbuilder
/
mmbld4962.exe
/
{app}
/
MMB_help.chm
/
popup.js
< prev
next >
Wrap
Text File
|
2004-09-07
|
795b
|
25 lines
/* expand and collapse
*/
function doExpand(paraNum){
if (paraNum.style.display=="none"){paraNum.style.display="";}
else{paraNum.style.display="none";}
}
popfont="Facename[, point size[, charset[, PLAIN BOLD ITALIC UNDERLINE]]]"
Text1="The text for the first pop-up window."
Text2="The text for the second pop-up window."
function mOnHoover(color,decoration,transform) {
oldcolor=window.event.srcElement.style.color
window.event.srcElement.style.color=color;
window.event.srcElement.style.textDecoration=decoration;
window.event.srcElement.style.textTransform=transform;
}
function mOffHoover(){
window.event.srcElement.style.color=oldcolor;
window.event.srcElement.style.textDecoration='none';
window.event.srcElement.style.textTransform='none';
}